home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 30
/
Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso
/
Aminet
/
mus
/
edit
/
OctamedSS1.03c.lha
/
Soundstudio
/
Rexx
/
omed.lha
/
rexx
/
Killtrack.omed
< prev
next >
Wrap
Text File
|
1996-06-09
|
398b
|
20 lines
/* Kill track */
'wi_request "Kill track?" "Full track|Only following notes|Cancel" var answer'
select
when answer=2 then do
op_update off
'ed_killnotes currtrack'
op_update on
wi_showstring "Killed."
end
when answer=1 then do
op_update off
ed_getcurrline var currline
ed_goto line 0
'ed_killnotes currtrack'
ed_goto line currline
op_update on
wi_showstring "Killed."
end
otherwise
end